home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Demo / tkinter / matt / window-creation-more.py < prev    next >
Text File  |  1995-12-21  |  890b  |  38 lines

  1. from Tkinter import *
  2.  
  3. # this shows how to create a new window with a button in it that can create new windows
  4.  
  5. class Test(Frame):
  6.     def printit(self):
  7.     print "hi"
  8.  
  9.     def makeWindow(self):
  10.     fred = Toplevel()
  11.     fred.label = Button(fred, {'text': "This is window number " + `self.windownum` + "." , 
  12.                    'command' : self.makeWindow})
  13.     fred.label.pack()
  14.     self.windownum = self.windownum + 1
  15.  
  16.     def createWidgets(self):
  17.     self.QUIT = Button(self, {'text': 'QUIT', 
  18.                   'fg': 'red', 
  19.                   'command': self.quit})
  20.     
  21.     self.QUIT.pack({'side': 'left', 'fill': 'both'})
  22.  
  23.  
  24.     # a hello button
  25.     self.hi_there = Button(self, {'text': 'Make a New Window', 
  26.                       'command' : self.makeWindow})
  27.     self.hi_there.pack({'side': 'left'})
  28.  
  29.  
  30.     def __init__(self, master=None):
  31.     Frame.__init__(self, master)
  32.     Pack.config(self)
  33.     self.windownum = 0 
  34.     self.createWidgets()
  35.  
  36. test = Test()
  37. test.mainloop()
  38.